home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / ScreenResolution / ui.py
Text File  |  2009-10-08  |  3KB  |  71 lines

  1. # -*- coding: utf-8 -*-
  2. #       ui.py
  3. #       
  4. #       Copyright 2008 Alberto Milone <albertomilone@alice.it>
  5. #       
  6. #       This program is free software; you can redistribute it and/or modify
  7. #       it under the terms of the GNU General Public License as published by
  8. #       the Free Software Foundation; either version 2 of the License, or
  9. #       (at your option) any later version.
  10. #       
  11. #       This program is distributed in the hope that it will be useful,
  12. #       but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. #       GNU General Public License for more details.
  15. #       
  16. #       You should have received a copy of the GNU General Public License
  17. #       along with this program; if not, write to the Free Software
  18. #       Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  19. #       MA 02110-1301, USA.
  20.  
  21. import gettext
  22.  
  23. class AbstractUI:
  24.     '''Abstract user interface.
  25.  
  26.     This encapsulates the entire program logic and all strings, but does not
  27.     implement any concrete user interface.
  28.     '''
  29.     def __init__(self):
  30.         '''
  31.         Initialize system.
  32.         '''
  33.         self.gettext_domain = 'screen-resolution-extra'
  34.  
  35.         gettext.textdomain(self.gettext_domain)
  36.  
  37.         self.init_strings()
  38.     
  39.     def _(self, str, convert_keybindings=False):
  40.         '''Keyboard accelerator aware gettext() wrapper.
  41.         
  42.         This optionally converts keyboard accelerators to the appropriate
  43.         format for the frontend.
  44.  
  45.         All strings in the source code should use the '_' prefix for key
  46.         accelerators (like in GTK). For inserting a real '_', use '__'.
  47.         '''
  48.         # KDE compatible conversion
  49.         result = unicode(gettext.gettext(str), 'UTF-8')
  50.  
  51.         if convert_keybindings:
  52.             result = self.convert_keybindings(result)
  53.  
  54.         return result
  55.     
  56.     def init_strings(self):
  57.         '''Initialize all static strings which are used in UI implementations.'''
  58.  
  59.         self.string_permission_text = self._('Monitor Resolution Settings has detected that the virtual resolution \
  60. must be set in your configuration file in order to apply your settings.\
  61. \n\nWould you like Screen Resolution to set the virtual resolution for you? (Recommended)')
  62.         
  63.         self.string_dbus_cant_connect = self._('Could not connect to Monitor Resolution Settings DBUS service.')
  64.         
  65.         self.string_operation_complete = self._('Please log out and log back in again.  You will then be able to use Monitor Resolution Settings to setup your monitors')
  66.         
  67.         self.string_cant_apply_settings = self._('Monitor Resolution Settings can\'t apply your settings.')
  68.         
  69.         self.string_title = self._('Monitor Resolution Settings')
  70.         
  71.